home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_08_05 / 8n05075a < prev    next >
Text File  |  1990-04-17  |  200b  |  14 lines

  1.  
  2. Listing 4:
  3. int testcalled = 0;
  4.  
  5. main()
  6. {
  7.     test();
  8.     printf("test() called, testcalled = %d\n", testcalled);
  9.     test();
  10.     printf("test() called, testcalled = %d\n", testcalled);
  11.     exit(0);
  12. }
  13.  
  14.